home *** CD-ROM | disk | FTP | other *** search
- Sub DCheck ()
- 'Checks to see if more space needs to be added at the end of the display
- 'Call this routine each time you print to the Display.
- Static t1 As Single, t2 As Single
- On Error Resume Next
- t1 = Displayer!Display.TextHeight("T") * 5
- t2 = Displayer!Display.Height
- If Displayer!Display.CurrentY > t2 - t1 Then
- Displayer!Display.Height = t2 + t1
- End If
- End Sub
-
-